home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / prog / pbc23c.arj / REVL.BAS < prev    next >
BASIC Source File  |  1994-03-13  |  542b  |  12 lines

  1. '   +----------------------------------------------------------------------+
  2. '   |                                                                      |
  3. '   |        PBClone  Copyright (c) 1990-1994  Thomas G. Hanlin III        |
  4. '   |                                                                      |
  5. '   +----------------------------------------------------------------------+
  6.  
  7. SUB ReverseL (Array() AS LONG, Elements%)
  8.    FOR tmp% = 1 TO Elements% \ 2
  9.       SWAP Array(tmp%), Array(Elements% - (tmp% - 1))
  10.    NEXT
  11. END SUB
  12.